home *** CD-ROM | disk | FTP | other *** search
/ Nejlepší hry / Nejlepsi hry.iso / hry / frozen bubble / fbinstaller.exe / {app} / src / frozen-bubble-editor < prev   
Text File  |  2003-01-06  |  2KB  |  58 lines

  1. #!/usr/bin/perl
  2. # ****************************************************************************
  3. #
  4. #                          Frozen-Bubble Level Editor
  5. #
  6. # Copyright (c) 2002 - 2003 Kim Joham and David Joham <[k|d]joham@yahoo.com>
  7. #
  8. # This program is free software; you can redistribute it and/or modify
  9. # it under the terms of the GNU General Public License version 2, as
  10. # published by the Free Software Foundation.
  11. #
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. # GNU General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU General Public License
  18. # along with this program; if not, write to the Free Software
  19. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  20. #
  21. #
  22. # *****************************************************************************
  23. #
  24. # Design & Programming by Kim Joham and David Joham, October 2002 to January 2003
  25. # Email - [k|d]joham at yahoo.com
  26. # pencil icon taken from the GIMP project
  27. #
  28. # *****************************************************************************
  29.  
  30. use fb_stuff;
  31. use FBLE;
  32.  
  33. # command line options modified from frozen-bubble code
  34. local $_ = "@ARGV";
  35.  
  36. /-h/ and die 'Usage:  [OPTION]...
  37. -h, --help                      display this help screen
  38. -cb, --colourblind              use bubbles for colourblind people
  39. -ls<filename>, 
  40.         --levelset<filename>    directly start with the specified levelset name
  41. -l<#n>, --level<#n>             directly start the n-th level
  42. -fs, --fullscreen               start in fullscreen mode
  43. ';
  44.  
  45. /-cb/ || /-co/ and $colourblind = 1;
  46. /-ls\s*(\S+)/ || /-levelset\s*(\S+)/ and $FBLE::levelset_name = $1 or $FBLE::levelset_name = 'default-levelset';
  47. /-l\s*(\d+)/ || /-level\s*(\d+)/ and $FBLE::curr_level = $1 or $FBLE::curr_level = 1;
  48. /-fs/ || /-fullscreen/ and $FBLE::command_line_fullscreen = 1 or $FBLE::command_line_fullscreen = 0;
  49.  
  50. my $app = SDL::App->new(-title => 'frozen-bubble level editor', -width => 640, -height => 480);
  51.  
  52. FBLE::init_setup('stand-alone', $app);
  53. FBLE::handle_events();
  54.  
  55.  
  56.  
  57.